home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
apps
/
math
/
ols.zoo
/
fatal.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-04-16
|
430b
|
24 lines
#include <stdio.h>
#include <stdlib.h>
#include "utils.h"
/* for error checking. */
#ifdef TESTING
int
main ()
{
FatalError ("You are lost in a maze of twisty little passages, all alike.\n");
return 0;
}
#endif
void
FatalError (char *error_text)
{
fprintf (stderr, "Run-time error...\n");
fprintf (stderr, "%s\n", error_text);
fprintf (stderr, "...now exiting to system...\n");
exit (1);
}